home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / wordapi / testexe.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  315b  |  16 lines

  1. program TestExe;
  2. { call WinWord from an EXE }
  3. { be sure to $DEFINE USE_SENDMESSAGE (see CAPILIB.PAS) }
  4.  
  5.  
  6. USES
  7.   WinTypes, WinProcs,
  8.   {$IFDEF VER70} Strings, {$ELSE Delphi} SysUtils, {$ENDIF}
  9.   WdCmds, WdFid, CapiLib;
  10.  
  11. {$I TEST.INC}  { see TEST.INC for details ;-}
  12.  
  13. BEGIN  {** MAIN **}
  14.   Test1;
  15. END.
  16.